home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 7 / Night Owl Shareware (NOPV7)(Night Owl Publisher Inc.)(1992).bin / 038a / bash1_12.arj / BASH1-12.TAR / bash-1.12 / builtins / enable.def < prev    next >
Text File  |  1991-10-03  |  3KB  |  104 lines

  1. This file is enable.def, from which is created enable.c.
  2. It implements the builtin "enable" in Bash.
  3.  
  4. Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
  5.  
  6. This file is part of GNU Bash, the Bourne Again SHell.
  7.  
  8. Bash is free software; you can redistribute it and/or modify it under
  9. the terms of the GNU General Public License as published by the Free
  10. Software Foundation; either version 1, or (at your option) any later
  11. version.
  12.  
  13. Bash is distributed in the hope that it will be useful, but WITHOUT ANY
  14. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License along
  19. with Bash; see the file COPYING.  If not, write to the Free Software
  20. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. $PRODUCES enable.c
  23.  
  24. $BUILTIN enable
  25. $FUNCTION enable_builtin
  26. $SHORT_DOC enable [-n] [name ...]
  27. Enable and disable builtin shell commands.  This allows
  28. you to use a disk command which has the same name as a shell
  29. builtin.  If -n is used, the NAMEs become disabled.  Otherwise
  30. NAMEs are enabled.  For example, to use the `test' found on your
  31. path instead of the shell builtin version, you type `enable -n test'.
  32. $END
  33.  
  34. #include "../shell.h"
  35. #include "../builtins.h"
  36.  
  37. static int enable_shell_command ();
  38.  
  39. /* Enable/disable shell commands present in LIST.  If list is not specified,
  40.    then print out a list of shell commands showing which are enabled and
  41.    which are disabled. */
  42. enable_builtin (list)
  43.      WORD_LIST *list;
  44. {
  45.   int result = 0, any_failed = 0;
  46.  
  47.   if (!list)
  48.     {
  49.       register int i;
  50.  
  51.       for (i = 0; i < num_shell_builtins; i++)
  52.     {
  53.       if (!shell_builtins[i].function)
  54.         continue;
  55.  
  56.       printf ("enable %s%s\n", shell_builtins[i].enabled ? "" : "-n ",
  57.           shell_builtins[i].name);
  58.     }
  59.     }
  60.   else
  61.     {
  62.       int disable_p = (strcmp (list->word->word, "-n") == 0);
  63.  
  64.       if (disable_p)
  65.     list = list->next;
  66.  
  67.       while (list)
  68.     {
  69.       result = enable_shell_command (list->word->word, disable_p);
  70.       if (!result)
  71.         {
  72.           builtin_error ("%s: not a shell builtin", list->word->word);
  73.           any_failed++;
  74.         }
  75.       list = list->next;
  76.     }
  77.     }
  78.   return (any_failed ? EXECUTION_FAILURE : EXECUTION_SUCCESS);
  79. }
  80.  
  81. /* Enable the shell command NAME.  If DISABLE_P is non-zero, then
  82.    disable NAME instead. */
  83. static int
  84. enable_shell_command (name, disable_p)
  85.      char *name;
  86.      int disable_p;
  87. {
  88.   register int i;
  89.   int found = 0;
  90.  
  91.   for (i = 0; i < num_shell_builtins; i++)
  92.     {
  93.       if (!shell_builtins[i].function)
  94.     continue;
  95.  
  96.       if (strcmp (name, shell_builtins[i].name) == 0)
  97.     {
  98.       found++;
  99.       shell_builtins[i].enabled = !disable_p;
  100.     }
  101.     }
  102.   return (found);
  103. }
  104.